
:root {
  --primary-blue: #007bff;
  --secondary-gray: #6c757d;
  --accent-orange: #ff5722;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --dark-bg: #343a40;
  --black: #000000;
  --success-green: #28a745;
  --warning-yellow: #ffc107;
  --danger-red: #dc3545;
  --info-blue: #17a2b8;
  --panel-bg-dark: #1e1e2f;
  --panel-bg-light: #373750;
  --main-text-color: #C19A6B;
  --secondary-text-color: #6c757d;
}
body {
  font-family: "Poppins", sans-serif;
  background: var(--light-bg);
  margin: 0;
  padding: 0;
}

/* Gallery */
.gallery-wrapperss {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 15px;
  max-width: 1100px;
  margin: 40px auto;
}

.gallery-left {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
}

.gallery-left-top,
.gallery-left-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.fancy-gallery-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.fancy-gallery-link:hover {
  transform: scale(1.04);
}

.fancy-gallery-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fancy-gallery-link::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  opacity: 0;
  transition: opacity 0.3s;
}

.fancy-gallery-link:hover::after {
  opacity: 1;
}

/* Tour Info */
.tour-details-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.tour-details-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.tour-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tour-detail-icon {
  width: 36px;
  height: 36px;
  background: var(--light-bg);
  color: var(--main-text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
}

.tour-detail-text {
  font-size: 14px;
  color: var(--main-text-color);
}

.tour-detail-text strong {
  display: block;
  font-size: 16px;
  color: var(--dark-bg);
}

.tour-price-box {
  font-size: 18px;
  font-weight: bold;
  color: var(--main-text-color);
}

.tour-price-box small {
  font-size: 14px;
  font-weight: normal;
  color: var(--secondary-text-color);
  margin-right: 5px;
}

/* Trip Highlights & Included/Excluded */
.section-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.included-excluded-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.included-list, .excluded-list {
  list-style: none;
}

.included-list li, .excluded-list li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
}

.included-list li:last-child, .excluded-list li:last-child {
  border-bottom: none;
}

.list-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.list-icon-included::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: bold;
  background: var(--panel-bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-icon-excluded::after {
  content: '✗';
  color: #9ca3af;
  background-color: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tour Plan */
.tour-plan-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

.tour-days-list {
  list-style: none;
}

.tour-day-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.tour-day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background-color: #edeef0;
  cursor: pointer;
  transition: background-color 0.2s;
}

.tour-day-header:hover {
  background-color: #f3f4f6;
}

.tour-day-number {
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 14px;
  margin-right: 16px;
}

.tour-day-title {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
}

.tour-expand-icon {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #6b7280;
}

.tour-day-content {
  display: none;
  padding: 20px;
  background: #fff;
  border-top: 1px solid #eee;
  font-size: 15px;
  color: #555;
}

/* Booking Panel */
.booking-wrapper {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 20px;
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.booking-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
}

.booking-form-group {
  margin-bottom: 24px;
}

.booking-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  background-color: #f9fafb;
  transition: border-color 0.2s;
}

.booking-form-input:focus {
  outline: none;
  border-color: #7c3aed;
  background-color: white;
}

.booking-total-section {
  border-top: 2px solid #e5e7eb;
  padding-top: 20px;
  margin-top: 20px;
}

.booking-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.booking-total-label {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

.booking-total-amount {
  font-size: 24px;
  font-weight: 700;
  color: var(--main-text-color);
}

.booking-btn {
  width: 100%;
  padding: 16px;
  background: var(--panel-bg-light);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-btn:hover {
  background: var(--panel-bg-light);
}

.booking-btn:active {
  transform: translateY(1px);
}

/* Responsive */
@media (max-width: 1024px) {
  .tour-details-wrapper {
    flex-direction: column;
  }
  .gallery-wrapperss {
       grid-template-columns: 1fr;
  }

  .booking-wrapper {
    position: static;
  }
}

@media (max-width: 768px) {
  .included-excluded-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

    /* General Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    /* Container */
    .tourpage-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 400px;
    }

    /* Main Content */
    .tourpage-main-content {
      padding: 40px;
      border-radius: 12px;
    }

    /* Booking Panel */
    .tourpage-booking-panel {
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      height: fit-content;
      position: sticky;
      top: 90px;
    }

    /* Trip Highlights */
    .tourpage-section-header {
      font-size: 32px;
      font-weight: 600;
      margin-bottom: 24px;
      color: #1a1a1a;
    }

    .tourpage-section-text {
      font-size: 16px;
      color: #666;
      margin-bottom: 40px;
      line-height: 1.7;
    }

    .tourpage-section-text p {
      margin-bottom: 8px;
    }

    /* Included/Excluded */
    .tourpage-included-excluded {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-bottom: 50px;
    }

    .tourpage-included-list, .tourpage-excluded-list {
      list-style: none;
    }

    .tourpage-included-list li, .tourpage-excluded-list li {
      display: flex;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid #f0f0f0;
      font-size: 15px;
    }

    .tourpage-included-list li:last-child, .tourpage-excluded-list li:last-child {
      border-bottom: none;
    }

    .tourpage-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 12px;
      flex-shrink: 0;
    }

    .tourpage-icon-included {
      background: #46385f;
      color: white;
    }

    .tourpage-icon-excluded {
      background-color: #e5e7eb;
      color: #9ca3af;
    }

    .tourpage-icon-included::after {
      content: '✓';
      font-size: 12px;
      font-weight: bold;
    }

    .tourpage-icon-excluded::after {
      content: '✗';
    }

    /* Tour Plan */
    .tourpage-plan-description {
      font-size: 16px;
      color: #666;
      margin-bottom: 30px;
      line-height: 1.7;
    }

    .tourpage-days-list {
      list-style: none;
    }

    .tourpage-day-item {
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      margin-bottom: 16px;
      overflow: hidden;
    }

    .tourpage-day-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 24px;
      background-color: var(--main-text-color);
      cursor: pointer;
      transition: background-color 0.2s;
    }

    .tourpage-day-header:hover {
      /*background-color: #f3f4f6;*/
    }

    .tourpage-day-number {
     color: var(--main-text-color);
    font-weight: 600;
    font-size: 14px;
    margin-right: 16px;
    background: white;
    padding: 0 7px;
    border-radius: 10px;
    }

    .tourpage-day-title {
      flex: 1;
      font-size: 16px;
      font-weight: 500;
      color: #fff;
    }

    .tourpage-expand-icon {
      width: 20px;
      height: 20px;
    
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #fff;
    }

    .tourpage-day-content {
      display: none;
      padding: 20px;
      background: #fff;
      border-top: 1px solid #eee;
      font-size: 15px;
      color: #555;
    }

    /* Booking Form */
    .tourpage-booking-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
    }

    .tourpage-booking-title {
      font-size: 24px;
      font-weight: 600;
      color: #1a1a1a;
    }

    .tourpage-form-group {
      margin-bottom: 24px;
    }

    .tourpage-form-input {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      font-size: 16px;
      background-color: #f9fafb;
      transition: border-color 0.2s;
    }

    .tourpage-form-input:focus {
      outline: none;
      border-color: #7c3aed;
      background-color: white;
    }

    /* Total & Button */
    .tourpage-total-section {
      border-top: 2px solid #e5e7eb;
      padding-top: 20px;
      margin-top: 20px;
    }

    .tourpage-total-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .tourpage-total-label {
      font-size: 18px;
      font-weight: 600;
      color: #1a1a1a;
    }

    .tourpage-total-amount {
      font-size: 24px;
      font-weight: 700;
      color: #46385f;
    }

    .tourpage-book-btn {
      width: 100%;
      padding: 16px;
      background: #46385f;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.2s;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .tourpage-book-btn:hover {
      background: #5a1ab0;
    }

    .tourpage-book-btn:active {
      transform: translateY(1px);
    }

    /* Map */
    .tourpage-map iframe {
      width: 100%;
      height: 300px;
      border: 0;
      border-radius: 10px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .tourpage-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .tourpage-booking-panel {
        position: static;
      }
    }

    @media (max-width: 768px) {
      .tourpage-included-excluded {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .tourpage-main-content, .tourpage-booking-panel {
        padding: 24px;
      }
      .tourpage-section-header {
        font-size: 28px;
      }

      body,html{

        overflow-x: hidden;
      }
    }



    .tourpage-included-list{

         margin: 0px !important;

        padding: 0px;


    }

    .tourpage-excluded-list{


        
         margin: 0px !important;

        padding: 0px;

    }

    .tourpage-days-list{


        margin: 0px !important;

        padding: 0px;
    }
.custom-btn {
  display: inline-block;
  background-color: #a67c52; /* Brown shade */
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  padding: 12px 40px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;

  margin-top: 30px;
}

.custom-btn:hover {
  background-color: #8c6239; /* Darker brown on hover */
  color: #fff;
  text-decoration: none;
}


  
/* Modal Styles */
.img-preview-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.img-preview-modal img {
  max-width: 60%;
  max-height: 60%;
  border-radius: 10px;
  animation: zoom 0.3s ease-in-out;
}

@keyframes zoom {
  from {transform: scale(0.7);}
  to {transform: scale(1);}
}

.img-preview-modal .close {
  position: absolute;
  top: 20px; right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

    /* Navigation buttons */
    .swiper-button-next,
    .swiper-button-prev {
      color: #8a6d3b;
      background: #fff;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 16px;
      font-weight: bold;
    }

a{


  text-decoration: none;

 }
      .swiper-button-next,
    .swiper-button-prev {
      color: #b38a3c;
      background: #fff;
      padding: 20px;
      border-radius: 50%;
      box-shadow: 0 6px 16px rgba(0,0,0,0.12);

      font-size: 10px;
    }

    /* Pagination bullets */
    .swiper-pagination-bullet { background:#b38a3c; opacity:.6; }
    .swiper-pagination-bullet-active { opacity:1; }





/*new css */




.tourpage-form-group {
   position: relative;
}
.tourpage-form-group i {
   position: absolute;
   left: 12px;
   top: 50%;
   transform: translateY(-50%);
   color: #666;
   font-size: 14px;
}
.tourpage-form-input {
   padding-left: 35px; /* space for icon */
}
.tourpage-book-btn i {
   margin-right: 6px;
}

.text-ads {
  background: red; /* banner bg */
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.text-ads a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.scrolling-text {
  display: inline-block;
  animation: bounce-scroll 40s linear infinite alternate;
}

/* bounce effect (left → right → left) */
@keyframes bounce-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(100vw - 100%)); }
}



.related-tours-section {
    margin-top: 40px;
}

.related-tours-slider .tour-card {
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.related-tours-slider .tour-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.related-tours-slider .tour-info h3 {
    font-size: 16px;
    margin: 10px 0 5px;
}

.related-tours-slider .tour-info p {
    font-size: 14px;
    color: #555;
}

.related-tours-slider .tour-price {
    display: block;
    font-weight: bold;
    margin-top: 5px;
    color: #ff5722;
}


